home *** CD-ROM | disk | FTP | other *** search
/ Resource Library: Multimedia / Resource Library: Multimedia.iso / hypertxt / msdos / hydos10 / vdisk < prev    next >
Text File  |  1991-04-25  |  2KB  |  53 lines

  1.                                    VDISK
  2.                         Sets up a virtual (RAM) disk
  3.                        See also <DEVICE> <CONFIG.SYS>
  4.  
  5. Virtual disks actually make your computers memory act like a disk
  6. drive.  As a result, a virtual disk will be much faster than an actual
  7. disk drive.  MSDOS supplies a device driver to create this virtual
  8. disc.  Versions up to 3.3 were called VDISK.SYS.  Version 4 calls it
  9. RAMDRIVE.SYS
  10.  
  11. COMMAND TYPE: External                  VERSION: 3.0 and up
  12.  
  13. (DOS 3.0-3.3)
  14. USE:  DEVICE=VDISK.SYS[comment][bbb] [comment][sss][comment][ddd] [/E[:m]]
  15.  
  16. comment is a message containing normal text characters.
  17. bbb  is the size of the virtual disk in kbytes.  Values between 1K and
  18.      the memory available in your machine will be accepted.
  19. sss  is the sector size in bytes. 128, 256, and 512 are the sizes that
  20.      will be accepted.  A smaller sector size will utilize space much
  21.      better, but a larger sector will improve performance.
  22. ddd  is the number of files that the virtual disk can hold.  Values
  23.      between 2 and 512 are accepted.
  24. /E   will force VDISK to use the extended memory (memory above 1
  25.      megabyte).
  26. :m   is the maximum number of sectors of data that VDISK will transfer
  27.      at a time.  The possible numbers for :m are 1 through 8.
  28.  
  29. EXAMPLE: DEVICE=VDISK.SYS 200 256 64
  30. sets up a virtual disk with 200K storage space, 256 bytes per sector,
  31. and 64 directory entries.
  32.  
  33. (DOS 4.0 and later)
  34. USE: DEVICE=RAMDRIVE.SYS [bbb] [sss] [ddd] [/E] [/A]
  35.  
  36. bbb is the size of the virtual disk in kbytes.  Values between 16K and the
  37.     memory available in your machine will be accepted.  The default is 64k
  38. sss is the sector size in bytes. 128, 256, 512 and 1024 are accepted. The
  39.     default is 512.  A smaller sector size will utilize space much better,
  40.     but a larger sector will improve performance.
  41. ddd is the number of root directory entries that the virtual disk can
  42.     hold. Values between 4 and 1024 are accepted. The default is 64
  43. /E  will place the virtual disc in extended memory (memory above 1
  44.     megabyte). This  cannot be specified with /A
  45. /A  will place the virtual disc in LIM expanded memory.  This cannot be
  46.     specified with /E
  47.  
  48. NOTE: The VDISK.SYS or RAMDRIVE.SYS device drivers must be placed in the
  49. CONFIG.SYS file and be used in conjunction with the DEVICE = DRIVER
  50. command.
  51. NOTE: The contents of a virtual disc will be lost when you reset or turn
  52. off the computer.
  53.